From 200398ef8fd242fa0269594428f06b28ac3cae5c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 24 Jun 2014 22:04:13 -0700 Subject: [PATCH] Disable terminal tests on windows The windows terminal does not use terminfo and is much different, so these tests will fail on windows or actually write to the console. --- tests/test_shell.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_shell.rs b/tests/test_shell.rs index 908ebaf39..df730a214 100644 --- a/tests/test_shell.rs +++ b/tests/test_shell.rs @@ -1,3 +1,7 @@ +#![cfg(not(windows))] // getting the actual colored output is a little different + // on windows, so it's tough to get a reference copy of all + // the color + use support::{ResultTest,Tap,shell_writes}; use hamcrest::{assert_that}; use std::io::{MemWriter, BufWriter, IoResult}; -- 2.30.2